home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 7 / Amiga Format AFCD07 (Dec 1996, Issue 91).iso / serious / shareware / comms / internet / web-related / apache_1.0.5 / cgi-bin / date < prev    next >
Text File  |  1994-03-01  |  151b  |  15 lines

  1. #!/bin/sh
  2.  
  3. DATE=/bin/date
  4.  
  5. echo Content-type: text/plain
  6. echo
  7.  
  8. if [ -x $DATE ];  then
  9.     $DATE
  10. else 
  11.     echo Cannot find date command on this system.
  12. fi
  13.  
  14.  
  15.